projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b5de13
)
(ignore-errors): Move to subr.el.
author
Glenn Morris
<rgm@gnu.org>
Wed, 7 May 2008 02:58:25 +0000
(
02:58
+0000)
committer
Glenn Morris
<rgm@gnu.org>
Wed, 7 May 2008 02:58:25 +0000
(
02:58
+0000)
lisp/emacs-lisp/cl-macs.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/cl-macs.el
b/lisp/emacs-lisp/cl-macs.el
index 6d54066fe4e264b9acca8a3af950b19e867d84e9..121bd5eea3b9c60568d257b40e6bf27e5198978b 100644
(file)
--- a/
lisp/emacs-lisp/cl-macs.el
+++ b/
lisp/emacs-lisp/cl-macs.el
@@
-2519,13
+2519,6
@@
omitted, a default message listing FORM itself is used."
(list* 'list (list 'quote form) sargs))))
nil))))
-;;;###autoload
-(defmacro ignore-errors (&rest body)
- "Execute BODY; if an error occurs, return nil.
-Otherwise, return result of last form in BODY."
- `(condition-case nil (progn ,@body) (error nil)))
-
-
;;; Compiler macros.
;;;###autoload